/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base Styles */
body {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #10312aea;
    background-color: #40adad;
}

/* Header */
.site-header {
    text-align: center;
    background-color: #10312aea;
    padding: 2rem 1rem;
    border-bottom: 4px solid #000200;
}

.logo {
    max-width: 30vw;
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
}

.site-header h1 {
    font-size: 2.2rem;
    color: #40adad;
}

.tagline {
    font-size: 1rem;
    color: #40adad;
}

/* Hero */
.hero img {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    display: block;
}

/* Content */
.content {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.content section {
    margin-bottom: 2.5rem;
}

.content h2 {
    color: #10312aea;
    margin-bottom: 0.75rem;
    border-bottom: 2px solid #ddd;
    padding-bottom: 0.3rem;
}

.content p {
    margin-bottom: 1rem;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.gallery-grid img {
    width: 100%;
    border-radius: 4px;
    border: 1px solid #ccc;
}

/* Footer */
.site-footer {
    text-align: center;
    padding: 1.5rem;
    background-color: #222;
    color: #fff;
    font-size: 0.9rem;
}
.contact a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
}

.contact a:hover {
    text-decoration: underline;
}

.map-container {
    margin-top: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow: hidden;
}
